From b1a40efe4a9baa4f740f8c4cf395e0c5d4992830 Mon Sep 17 00:00:00 2001 From: "Luis R. Rodriguez" Date: Thu, 12 Jun 2014 18:18:46 -0700 Subject: [PATCH] autoconf: xen: force a refresh with autoconf MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit With some new functionality introduced we can't keep around the old cache, but more specifically at times autogen.sh can produce inconsistent results without considering all files obsolete. The cost of considering all files obsolete is small so just force it. Signed-off-by: Luis R. Rodriguez Cc: Ian Campbell Cc: Ian Jackson Cc: Jan Beulich Cc: Keir Fraser Cc: Tim Deegan Acked-by: Roger Pau Monné Acked-by: Ian Campbell --- autogen.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autogen.sh b/autogen.sh index b5c96882d9..2be836008a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,12 +1,12 @@ #!/bin/sh -e -autoconf +autoconf -f ( cd tools - autoconf + autoconf -f autoheader ) ( cd stubdom - autoconf + autoconf -f ) ( cd docs - autoconf + autoconf -f ) -- 2.30.2